Skip to main content
Version: 1.0.2

Add or Update MCC Group

Add or update Merchant Country Code (MCC) group. MCC group name is unique, and wherever it exists, the details will be updated in the respective groups.

Method: POST

{{URL}}/cardv2

Headers

NameValue
Content-Typeapplication/json

Example

Payload Parameters
ParametersDescription

reference

Optional

String

Unique reference ID of the request

Sample Value: "visadps100045"

transactionType

Mandatory

String

Type of operation / transaction

Constant Value : "ADD_UPDATE_MCCGROUP"

customerId

Mandatory

String

Unique ID of the customer

Sample Value : "100000000006001"

product

Mandatory

String

Name of the product associated with the card

Sample Value: "DEFAULT"

channel

Mandatory

Enum

Processing channel through which the card transaction happens

Valid Values:

PULSE

VISA_DPS

Sample Value :"VISA_DPS"

program

Mandatory

String

Name of the program to which the card product is mapped

Sample Value : "DEFAULT"

mccGroup

Mandatory

Object

groupName

Mandatory

String

The name of the MCC group being added or updated

Sample Value : "Mathew MCC"

description

Mandatory

String

Description of the MCC group

Sample Value : "Mathew Mcc group"

mccCodes

Mandatory

Array

An array of MCC codes to be included in the group

Sample Value : "5542"


curl --location --globoff '{{URL}}/cardv2' \
--header 'Content-Type: application/json' \
--data '{"method":"ledger.CARD.request","id":"1","params":{"payload":{"reference":"visadps100045","transactionType":"ADD_UPDATE_MCCGROUP","customerId":"100000000006001","product":"DEFAULT","channel":"VISA_DPS","program":"DEFAULT","mccGroup":{"groupName":"Mathew MCC","description":"Mathew Mcc group","mccCodes":["5542"]}},"api":{"credential":"{{cred}}","signature":"{{signature}}","apiKey":"{{Api-key}}"}}}'

Body

{
"method": "ledger.CARD.request",
"id": "1",
"params": {
"payload": {
"reference": "visadps100045",
"transactionType": "ADD_UPDATE_MCCGROUP",
"customerId": "100000000006001",
"product": "DEFAULT",
"channel": "VISA_DPS",
"program": "DEFAULT",
"mccGroup": {
"groupName": "Mathew MCC",
"description": "Mathew Mcc group",
"mccCodes": [
"5542"
]
}
},
"api": {
"credential": "{{cred}}",
"signature": "{{signature}}",
"apiKey": "{{Api-key}}"
}
}
}

Response: 200

Response Parameters
ParametersDescription

Id

String

Response Id echoed from the request Id

Sample Value : "1"

result

Object

mccGroup

Object

id

String

Unique identifier of the MCC group

Sample Value : "673dacfe36e456cc9c7980d5"

groupName

String

The name of the MCC group added or updated

Sample Value : "Mathew MCC"

description

String

Description of the MCC group

Sample Value : "Mathew Mcc group"

mccCodes

Array

An array of MCC codes included in the group

Sample Value : "5542"

active

Boolean

Indicates whether the MCC group is active

Sample Value : false

createdDate

String

Date and time when the MCC group was created

Sample Value : "2024-11-20T09:33:50.157Z"

updatedDate

String

Date and time when the MCC group was last updated

Sample Value : "2024-11-20T09:33:50.161Z"

isCreatedBridge

Boolean

Indicates whether the MCC group was validated via the bridge service

Sample Value : false

api

Object

type

String

Acknowledgement for type of operation requested for

Constant value: " ADD_UPDATE_MCCGROUP_ACK"

reference

String

Auto generated reference ID of this acknowledgment

Sample value: " REFvisadps100045"

dateCreated

Number

Unix timestamp of the response was created

Sample value: 1732095230

originalReference

String

Original reference ID taken from the request

Sample value: " visadps100045"


{
"id": "1",
"result": {
"mccGroup": {
"id": "673dacfe36e456cc9c7980d5",
"groupName": "Mathew MCC",
"description": "Mathew Mcc group",
"mccCodes": [
"5542"
],
"active": false,
"createdDate": "2024-11-20T09:33:50.157Z",
"updatedDate": "2024-11-20T09:33:50.161Z",
"isCreatedBridge": false
},
"api": {
"type": "ADD_UPDATE_MCCGROUP_ACK",
"reference": "REFvisadps100045",
"dateCreated": 1732095230,
"originalReference": "visadps100045"
}
}
}